home *** CD-ROM | disk | FTP | other *** search
/ Logiciels PC 7 / logiciel pc 7.iso / Divers / Prog / Delphi / ZipManager / DISK1 / _SETUP.1 / Nouveau.pas < prev    next >
Pascal/Delphi Source File  |  1998-12-07  |  376b  |  28 lines

  1. unit Nouveau;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TForm2 = class(TForm)
  11.     Edit1: TEdit;
  12.     OKBtn: TButton;
  13.     Button1: TButton;
  14.   private
  15.     { DΘclarations privΘes}
  16.   public
  17.     { DΘclarations publiques}
  18.   end;
  19.  
  20. var
  21.   Form2: TForm2;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. end.
  28.